runtime.p.runSafePointFn (field)

13 uses

	runtime (current package)
		mgcmark.go#L1181: 		for !(gp.preempt && (preemptible || sched.gcwaiting.Load() || pp.runSafePointFn != 0)) {
		mgcmark.go#L1203: 	for !(gp.preempt && (preemptible || sched.gcwaiting.Load() || pp.runSafePointFn != 0)) {
		proc.go#L2081: 			atomic.Store(&p2.runSafePointFn, 1)
		proc.go#L2093: 		if atomic.Cas(&p.runSafePointFn, 1, 0) {
		proc.go#L2113: 		if s == _Psyscall && p2.runSafePointFn == 1 && atomic.Cas(&p2.status, s, _Pidle) {
		proc.go#L2144: 		if p2.runSafePointFn != 0 {
		proc.go#L2171: 	if !atomic.Cas(&p.runSafePointFn, 1, 0) {
		proc.go#L3088: 	if pp.runSafePointFn != 0 && atomic.Cas(&pp.runSafePointFn, 1, 0) {
		proc.go#L3305: 	if pp.runSafePointFn != 0 {
		proc.go#L3476: 	if sched.gcwaiting.Load() || pp.runSafePointFn != 0 {
		proc.go#L4512: 	if gp.m.p.ptr().runSafePointFn != 0 {
		runtime2.go#L724: 	runSafePointFn uint32 // if 1, run sched.safePointFn at next safe point